21c4f3358846954111d729f1263d4ec9ece1513e,src/com/sun/jna/LastErrorException.java,LastErrorException,LastErrorException,#number#,62

Before Change


    }

    public LastErrorException(int code) {
        super(formatMessage(code));
        this.errorCode = code;
    }
}

After Change


    }

    public LastErrorException(int code) {
        this(code, formatMessage(code));
    }

    protected LastErrorException(int code, String msg) {